home *** CD-ROM | disk | FTP | other *** search
- { *****************************************************************************
- Implementing COM Component Callbacks in Delphi
- Code written for Delphi Informant publication
-
- Comments, questions, suggestions?
- Binh Ly, Systems Analyst (bly@brickhouse.com)
- Brickhouse Data Systems (http://www.brickhouse.com)
- *****************************************************************************
- }
- program ChatServer;
-
- uses
- Forms,
- ComServ,
- Dialogs,
- MainFrm in 'MainFrm.pas' {frmMain},
- ChatServer_TLB in 'ChatServer_TLB.pas',
- ChatConnection in 'ChatConnection.pas' {ChatConnection: CoClass},
- ChatChannel in 'ChatChannel.pas';
-
- {$R *.TLB}
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmMain, frmMain);
- Application.Run;
- end.
-